home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 590 / 590.xpi / chrome / ipv6ident.jar / content / ipv6ident.xul < prev   
Extensible Markup Language  |  2009-12-10  |  2KB  |  49 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://ipv6ident/content/ipv6ident.css" type="text/css"?> 
  3. <!--
  4.     ShowIP Firefox Extension
  5.     Copyright (C) 2007 Jan Dittmer <jdi@l4x.org>
  6.  
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation; either version 2 of the License, or
  10.     (at your option) any later version.
  11.  
  12.     This program is distributed in the hope that it will be useful,
  13.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.     GNU General Public License for more details.
  16.  
  17.     You should have received a copy of the GNU General Public License
  18.     along with this program; if not, write to the Free Software
  19.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  20. -->
  21. <overlay id="ipv6ident-overlay" 
  22.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  23.  
  24.     <script type="text/javascript" src="ipv6ident-pref.js"/> <!-- for preferences -->
  25.     <script type="text/javascript" src="ipv6ident.js"/>
  26.  
  27.     <stringbundleset id="stringbundleset">
  28.     <stringbundle id="showip_strings" src="chrome://ipv6ident/locale/showip.properties"/>
  29.     </stringbundleset>
  30.  
  31.     <statusbar id="status-bar">
  32.         <menupopup id="showip_popup" xonpopupshowing="showipExt.AddIPItems(this,event);"/>
  33.         <statusbarpanel label="ShowIP" id="showip_status_text" class="statusbarpanel-text"
  34.             onclick="showipExt.showPopup(event);">
  35.         </statusbarpanel>
  36.  
  37.     </statusbar>
  38.     <!-- firefox -->
  39.     <menupopup id="menu_ToolsPopup">
  40.         <menuitem insertafter="devToolsSeparator" label="ShowIP"
  41.             accesskey="I" oncommand="showipExtPrefs.Show();" />
  42.     </menupopup>
  43.     <!-- mozilla -->
  44.     <menupopup id="taskPopup">
  45.         <menuitem insertafter="downloadmgr" label="ShowIP"
  46.             accesskey="I" oncommand="showipExtPrefs.Show();" />
  47.     </menupopup>
  48. </overlay>
  49.